home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 11 - 1995 / 11.02 Feb 95 / Yenta / AboutBoxƒ / CPPYentaAboutBox.h < prev   
Encoding:
C/C++ Source or Header  |  1996-04-04  |  750 b   |  37 lines  |  [TEXT/KAHL]

  1. /***************************************************** IMPLEMENTATION
  2.     DATE:    10/21/93
  3.     AUTHOR: Eric R. Rosé
  4.  
  5.     CLASS:  CPPYentaAboutBox
  6.     
  7.     SUPERCLASS: CPPWindow
  8.     
  9.         This C++ class manages the Yenta about box dialog
  10.     
  11. ********************************************************************/
  12.  
  13. #pragma once
  14.  
  15. #include <CPPWindow.h>
  16.  
  17. class CPPButton;
  18. class CPPStaticText;
  19.  
  20. class CPPYentaAboutBox : public CPPWindow {
  21. public:
  22.     CPPStaticText    *aboutText;
  23.     CPPButton        *okButton;
  24.  
  25.             CPPYentaAboutBox (CPPWindowManager *theManager);
  26.             ~CPPYentaAboutBox (void);
  27.  
  28.     virtual    char    *ClassName (void);
  29.     
  30. protected:    
  31.     virtual Boolean    DoUserKey (EventRecord *theEvent);
  32.  
  33. };
  34.  
  35. /*-----------------------------------------------------------------*/
  36.  
  37. Boolean    DoAboutBox (void);